tools/pas2c/CMakeLists.txt
author koda
Tue, 13 Nov 2012 22:24:30 +0100
branchwebgl
changeset 8044 796f2653f21d
parent 7985 259231ebf099
child 9238 84e591af6c29
permissions -rw-r--r--
some CMake cleanup
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
     1
set(pas2c_sources
7985
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     2
        Main.hs
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     3
        PascalBasics.hs
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     4
        PascalParser.hs
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     5
        PascalPreprocessor.hs
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     6
        PascalUnitSyntaxTree.hs
8044
796f2653f21d some CMake cleanup
koda
parents: 7985
diff changeset
     7
        Pas2C.hs
7985
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
     8
    )
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
     9
8044
796f2653f21d some CMake cleanup
koda
parents: 7985
diff changeset
    10
set(pas2c_main ${CMAKE_SOURCE_DIR}/tools/pas2c/Main.hs)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    11
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    12
set(ghc_flags
7985
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    13
        --make ${pas2c_main}
8044
796f2653f21d some CMake cleanup
koda
parents: 7985
diff changeset
    14
        -i${CMAKE_SOURCE_DIR}/tools/pas2c/
7985
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    15
        -o ${EXECUTABLE_OUTPUT_PATH}/pas2c${CMAKE_EXECUTABLE_SUFFIX}
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    16
        -odir ${CMAKE_CURRENT_BINARY_DIR}
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    17
        -hidir ${CMAKE_CURRENT_BINARY_DIR}
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    18
        ${haskell_flags}
259231ebf099 well this was silly
koda
parents: 7973
diff changeset
    19
    )
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    20
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    21
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/pas2c${CMAKE_EXECUTABLE_SUFFIX}"
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    22
        COMMAND "${ghc_executable}"
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    23
        ARGS ${ghc_flags}
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    24
        MAIN_DEPENDENCY ${hwserv_main}
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    25
        DEPENDS ${hwserver_sources}
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    26
        )
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    27
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    28
add_custom_target(pas2c ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/pas2c${CMAKE_EXECUTABLE_SUFFIX}")
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents:
diff changeset
    29