318c3619dc
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10342 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
26 lines
654 B
CMake
26 lines
654 B
CMake
#
|
|
# UseFLTK.CMake - FLTK CMake environment configuration file for external projects.
|
|
#
|
|
# This file is generated by CMake and used to set FLTK's environment for an external project.
|
|
#
|
|
# automatically generated - do not edit
|
|
|
|
include_directories("@INCLUDE_DIRS@")
|
|
|
|
if(CMAKE_CROSSCOMPILING)
|
|
find_file(FLUID_PATH
|
|
NAMES fluid fluid.exe
|
|
PATHS ENV PATH
|
|
NO_CMAKE_FIND_ROOT_PATH
|
|
)
|
|
add_executable(fluid IMPORTED)
|
|
set_target_properties(fluid
|
|
PROPERTIES IMPORTED_LOCATION ${FLUID_PATH}
|
|
)
|
|
set(FLTK_FLUID_EXECUTABLE ${FLUID_PATH})
|
|
else()
|
|
set(FLTK_FLUID_EXECUTABLE fluid)
|
|
endif(CMAKE_CROSSCOMPILING)
|
|
|
|
set(FLTK_WRAP_UI TRUE)
|